.popupForm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  
  .formContainer {
    background-color: white;
    width: 100%;
    max-width: 75vw;
    height: 100%;
    max-height: 75vh;
    margin: 100px auto;
    padding: 20px;
    border-radius: 50px;
    position: relative;
    overflow: auto;
    scrollbar-width: none;
  }

  .formContainer h2, .h2{
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
    font-size: calc(1.325rem + 0.9vw);
  }
  
  @media (min-width: 1200px) {
   .formContainer h2, .h2 {
      font-size: 2rem;
    }
  }

  .formContainer .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
  }

  .formContainer form {
    /* display: flex;
    flex-direction: column; */
    display: ruby-text;
    padding: 5px;
  }

  .formContainer form.row div {
    height: 10vh;
}
  
.formContainer form .input-field{
    border-bottom: 1px solid black;
    margin: 0 11px 0 10px;
    /* width: 86%; */
    width: -webkit-fill-available;
    padding-left: 0;
    
  }

  .formContainer form label{
    display:none;
    margin-bottom: 10px;
    transform: translate(0,-2.75rem);
  }

  @supports (not (-ms-ime-align:auto)){
    form label{
      color: #999;
      transform: translate(0.25rem, -1.5rem);
      transition: all 0.2s ease-out;
    }
     form input:focus + form label,
     form input:not(:placeholder-shown)+form label{
      color: #111;
      transform: translate(0rem, -2.75rem);
    }
  }

  .formContainer form input, 
  textarea{
    cursor: text;
    width: -webkit-fill-available;
    margin-bottom: 5px;
    padding: 30px 10px 0px;
    border: none;
    height: 100%;
  }

  .formContainer textarea {
    resize: vertical;
    font-family: Poppins;
    /* margin: 0 11px 0 10px; */
    /* width: -webkit-fill-available; */
    padding-left: 10px;
  }
  .formContainer textarea#comments{
    width: 100%;
    height: calc(100% + 2rem);
    margin: 25px 11px 0 10px;
    border-bottom: 1px solid black;
  }
  
  .formContainer textarea.form-control {
    min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  }

  .g-recaptcha{
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    flex-shrink: 0;
    width: inherit;
    max-width: inherit;
    padding-right: inherit;
    padding-left: inherit;
  }

  .formContainer button {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 10px 0px;
    padding: 10px;
    border: none;
    background-color: #000000;
    color: white;
    cursor: pointer;
    float: none;
    /* background: #292926;
    color: #fff; */
    /* font-weight: bold; */
    font-size: 1rem;
    font-family: Poppins;
    text-transform: uppercase;
    padding: inherit;
    line-height: inherit;
    -webkit-appearance: none;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
  }

  .formContainer button:hover {
    background-color: #0056b3;
  }

  /* -----responsive------ */

  .formContainer .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
  }
  /* .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
  } */
  
  .formContainer form .col {
    flex: 1 0 0%;
  }
  .formContainer form .col-12 {
    flex: 0 0 auto;
    width: 97%;
  }
  .formContainer form .col-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  @media (min-width: 768px) {
    .formContainer form .col-md-6 {
      flex: 0 0 auto;
      width: 47%;
    }
  }
  @media (min-width: 768px) and (max-width: 967px){
    .formContainer form .col-md-6 {
      flex: 0 0 auto;
      width: calc(50% - 1.35rem);
    }
  }
  
  .formContainer .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    display: block;
    width: 100%;
    height: 100%;
    padding: 25px 10px 0px;
    /* font-size: 1rem;
    font-weight: 400; */
    line-height: 1.75;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background-color: var(--bs-body-bg); */
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 0.75rem bottom 24%;
    background-size: 16px 12px;
    border: none;
    /* border-radius: var(--bs-border-radius); */
    /* transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; */
  }
  @media (prefers-reduced-motion: reduce) {
    .formContainer .form-select {
      transition: none;
    }
  }
  /* .form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  } */
  .formContainer .form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none;
  }
  .formContainer .form-select:disabled {
    background-color: var(--bs-secondary-bg);
  }
  .formContainer .form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 var(--bs-body-color);
  }
  .formContainer .form-select option{
    color: #999;
  }

  .formContainer button {
    border-radius: 0;
  }
  
  .formContainer button:focus:not(:focus-visible) {
    outline: 0;
  }
  
  .formContainer form input,
  .formContainer button,
  .formContainer form select
  {
    /* margin: 0; */
    font-family: poppins;
    font-size: 1rem;
    line-height: inherit;
  }
  
  .formContainer button,
  .formContainer form select {
    text-transform: none;
  }
  
  [role=button] {
    cursor: pointer;
  }
  
  .formContainer select {
    word-wrap: normal;
  }
  .formContainer form select:disabled {
    opacity: 1;
  }

  .formContainer button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
.formContainer button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

.form-floating {
  position: relative;
}


.formContainer form .form-control {
  display: block;
  width: 100%;
  /* padding: 0.375rem 0.75rem; */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (max-width: 768px) {
  .formContainer form.row div {
    height: 5vh;
  }
  .formContainer form input{
    margin-bottom: 5px;
    padding: 1px 10px 0px;
  }
  .formContainer textarea{
    margin-bottom: 5px;
    padding: 5px 10px 0px;
    /* border: none;
    height: 100%; */
  }
  .formContainer textarea#comments{
    width: 97%;
    height: 55px;
    margin: 0px 11px 0 10px;
    border-bottom: 1px solid black;
  }
  .formContainer form .form-control {
    font-size: 0.5rem;
  }
  .formContainer .form-select {
    padding: 3px 10px 0px;
    background-size: 16px 8.5px;
  }
  .formContainer form input,
  .formContainer button,
  .formContainer form select{
    font-size: 0.5rem;
  }
  .formContainer h2, .h2{
    margin-top: 15px;
    line-height: 1;
    font-size: calc(1.1rem + 0.5vw);
  }
  .formContainer {
    padding: 20px;
    border-radius: 19px;
  }
  .g-recaptcha{
    margin-top: 43px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
  }
  .formContainer button {
    margin: 43px 0px;
  }
}

@media (max-width: 425px) {
  .formContainer {
    width: 100%;
    max-width: 83vw;
  }
}
@media (min-width: 768px) and (max-width: 951px) {
  .g-recaptcha{
    margin-top: 60px;
    margin-bottom: 4px;
  }
  .formContainer form {
    padding: 0 5px;
  }
  .formContainer h2, .h2{
    margin-top: -10px;
    margin-bottom: 0rem;
  }
  
}

@media (min-width: 1970px){
  .formContainer {
    max-height: 57vh;
    margin: 12% auto;
  }
  .g-recaptcha {
    margin-bottom: -54px;
  }
}
@media (min-width: 1202px) and (max-width: 1439px) {
  .formContainer {
    max-height: 69vh;
  }
}
@media (min-width: 1440px) and (max-width: 1969px){
  .formContainer {
    max-height: 67vh;
    margin: 10% auto;
  }
}
@media (min-width: 768px) and (max-width: 1024px){
  #submit, .form-submit button {
    padding: 4px 30px 15px 8px;
  }
  .formContainer button {
    height: 32px;
    margin: 12px 0px;
  }
}


#loading_indicator {
  display: none;
  color: #fff;
}

#message{
  display: none;
  position: fixed;
  padding: auto;
  top: 50%;
  left: 50%;
  height: 30%;
  background-color: rgba(172, 176, 177, 1);
  z-index: 999;
  transform: translate(-50%, -56%);
}

@media (min-width: 650px){
  #message{
    width: 44vw;
  }
}
@media (min-width: 1440px){
  #message{
    height: 25%;
  }
}

.close_icon{
  position: absolute;
  top: -12px;
  right: -10px;
  font-size: 1.1rem;
  cursor: pointer;
  color: white;
}
div.loader { 
  display: none; 
  position: absolute; /* Position the loader absolutely relative to the button */
  top: 30%; /* Align the loader vertically in the middle */
  left: 47%; /* Align the loader horizontally in the middle */
  transform: translate(-50%, -50%); /*Center the loader*/
  border: 4px solid rgba(255, 255, 255, 0.3); 
  border-top: 4px solid white;
  background-color: #000000; 
  border-radius: 50%; 
  width: 20px; 
  height: 20px; 
  animation: spin 1s infinite ease-in; 
  /* margin-left: 10px;  */
} 

@keyframes spin { 
  0% { 
      transform: rotate(0deg); 
  } 

  100% { 
      transform: rotate(360deg); 
  } 
} 

.loading { 
  background-color: #0056b3; 
  pointer-events: none; 
}